home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 4 / The Arsenal Files 4 (Arsenal Computer).ISO / casm / au116-as.exe / UTIL / ISBINARY.CPP < prev    next >
C/C++ Source or Header  |  1994-11-18  |  310b  |  15 lines

  1. #include "..\au.hpp"
  2.  
  3. /*░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░*/
  4.  
  5. BOOLEAN is_binary_file_char(int ch)
  6. {
  7.     if ((ch < 32 && ch != 26 && ch != '\n' && ch != '\r' && ch != '\t'
  8.           && ch != ' ' && ch != '\0') || ch > 127)
  9.     {
  10.         return TRUE;
  11.     }
  12.     else
  13.         return FALSE;
  14. }
  15.